home *** CD-ROM | disk | FTP | other *** search
Text File | 1992-07-15 | 664 b | 36 lines | [TEXT/MPS ] |
- // ULookupCommand.h
- // Copyright © 1991-92 by Apple Computer, Inc. All rights reserved.
- // Kent Sandvik DTS
- // This file contains the class for TLookup command, used for
- // doing the query over the network
- //
- // <1> khs 1.0 First final version
-
-
- #ifndef __LOOKUPCOMMAND__
- #define __LOOKUPCOMMAND__
-
- #ifndef __AEGESTALT__
- #include "UAEGestalt.h"
- #endif
-
- #ifndef __AEDOCUMENT__
- #include "UAEDocument.h"
- #endif
-
- class TAEDocument;
-
- class TLookupCommand : public TCommand
- {
- public:
- TLookupCommand();
- virtual pascal void ILookupCommand(CommandNumber,
- TAEDocument*);
- virtual pascal void DoIt();
-
- TAEDocument* fDocument;
- };
-
- #endif __LOOKUPCOMMAND__
-
-